GdkBitmap is a GObject, not a boxed type.
authorAnders Carlsson <andersca@gnome.org>
Thu, 21 Oct 2004 23:16:44 +0000 (23:16 +0000)
committerAnders Carlsson <andersca@src.gnome.org>
Thu, 21 Oct 2004 23:16:44 +0000 (23:16 +0000)
2004-10-22  Anders Carlsson  <andersca@gnome.org>

* gtk/gtktexttag.c: (gtk_text_tag_get_property):
GdkBitmap is a GObject, not a boxed type.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktexttag.c

index a1fbaa00d60b0b99809975fa084e80ed550f1401..7f0cd76be6ab297db378f73775484e7e67cdb4c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-22  Anders Carlsson  <andersca@gnome.org>
+
+       * gtk/gtktexttag.c: (gtk_text_tag_get_property):
+       GdkBitmap is a GObject, not a boxed type.
+       
 Thu Oct 21 15:01:09 2004  Owen Taylor  <otaylor@redhat.com>
 
        #155952
index a1fbaa00d60b0b99809975fa084e80ed550f1401..7f0cd76be6ab297db378f73775484e7e67cdb4c3 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-22  Anders Carlsson  <andersca@gnome.org>
+
+       * gtk/gtktexttag.c: (gtk_text_tag_get_property):
+       GdkBitmap is a GObject, not a boxed type.
+       
 Thu Oct 21 15:01:09 2004  Owen Taylor  <otaylor@redhat.com>
 
        #155952
index a1fbaa00d60b0b99809975fa084e80ed550f1401..7f0cd76be6ab297db378f73775484e7e67cdb4c3 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-22  Anders Carlsson  <andersca@gnome.org>
+
+       * gtk/gtktexttag.c: (gtk_text_tag_get_property):
+       GdkBitmap is a GObject, not a boxed type.
+       
 Thu Oct 21 15:01:09 2004  Owen Taylor  <otaylor@redhat.com>
 
        #155952
index a1fbaa00d60b0b99809975fa084e80ed550f1401..7f0cd76be6ab297db378f73775484e7e67cdb4c3 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-22  Anders Carlsson  <andersca@gnome.org>
+
+       * gtk/gtktexttag.c: (gtk_text_tag_get_property):
+       GdkBitmap is a GObject, not a boxed type.
+       
 Thu Oct 21 15:01:09 2004  Owen Taylor  <otaylor@redhat.com>
 
        #155952
index 8d0519749655bfb27348ce1d0439dc7351961622..4e52a4a168e19fe2e9b5fda5ba5f80ddee828aca 100644 (file)
@@ -1377,12 +1377,12 @@ gtk_text_tag_get_property (GObject      *object,
 
     case PROP_BACKGROUND_STIPPLE:
       if (tag->bg_stipple_set)
-        g_value_set_boxed (value, tag->values->appearance.bg_stipple);
+        g_value_set_object (value, tag->values->appearance.bg_stipple);
       break;
 
     case PROP_FOREGROUND_STIPPLE:
       if (tag->fg_stipple_set)
-        g_value_set_boxed (value, tag->values->appearance.fg_stipple);
+        g_value_set_object (value, tag->values->appearance.fg_stipple);
       break;
 
     case PROP_FONT: